github.com/klauspost/compress/zstd.fseEncoder.actualTableLog (field)

26 uses

	github.com/klauspost/compress/zstd (current package)
		blockenc.go#L657: 				println("tl:", cur.actualTableLog, "symbolLen:", cur.symbolLen, "norm:", cur.norm[:cur.symbolLen], "hist", cur.count[:cur.symbolLen])
		blockenc.go#L713: 		println("block:", b.output[start:], "tablelog", ofEnc.actualTableLog, "maxcount:", ofEnc.maxCount)
		blockenc.go#L714: 		fmt.Printf("selected TableLog: %d, Symbol length: %d\n", ofEnc.actualTableLog, ofEnc.symbolLen)
		blockenc.go#L804: 	ml.flush(mlEnc.actualTableLog)
		blockenc.go#L805: 	of.flush(ofEnc.actualTableLog)
		blockenc.go#L806: 	ll.flush(llEnc.actualTableLog)
		fse_encoder.go#L25: 	actualTableLog uint8  // Selected tablelog.
		fse_encoder.go#L82: 	tableSize := 1 << s.actualTableLog
		fse_encoder.go#L103: 	tableSize := uint32(1 << s.actualTableLog)
		fse_encoder.go#L146: 		largeLimit := int16(1 << (s.actualTableLog - 1))
		fse_encoder.go#L182: 		tableLog := s.actualTableLog
		fse_encoder.go#L210: 	s.actualTableLog = 0
		fse_encoder.go#L265: 		tableLog          = s.actualTableLog
		fse_encoder.go#L339: 		tableLog     = s.actualTableLog
		fse_encoder.go#L453: 	s.actualTableLog = tableLog
		fse_encoder.go#L470: 		fmt.Printf("selected TableLog: %d, Symbol length: %d\n", s.actualTableLog, s.symbolLen)
		fse_encoder.go#L475: 	if total != (1 << s.actualTableLog) {
		fse_encoder.go#L476: 		return fmt.Errorf("warning: Total == %d != %d", total, 1<<s.actualTableLog)
		fse_encoder.go#L498: 		tableLog  = s.actualTableLog
		fse_encoder.go#L607: 		if !(s.actualTableLog < 16) {
		fse_encoder.go#L611: 		if !(uint8(accuracyLog) < 31-s.actualTableLog) {
		fse_encoder.go#L615: 	tableSize := uint32(1) << s.actualTableLog
		fse_encoder.go#L618: 	normalizedDeltaFromThreshold := (deltaFromThreshold << accuracyLog) >> s.actualTableLog
		fse_encoder.go#L644: 	badCost := (uint32(s.actualTableLog) + 1) << kAccuracyLog
		fse_encoder.go#L671: 	return (((uint32(s.symbolLen) * uint32(s.actualTableLog)) >> 3) + 3) * 8
		fse_predefined.go#L150: 			enc.actualTableLog = f.actualTableLog